home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 October
/
PCWorld_1999-10_cd1.bin
/
Software
/
Servis
/
X-setup
/
_SETUP.1
/
XQ OEM Info Picture.xpl
< prev
next >
Wrap
Text File
|
1999-05-28
|
1KB
|
48 lines
"FILE"="Xteq Systems X-Setup Plugin 3.1"
"TYPE"="3"
"COUNT"="1"
"UIPATH"="Appearance\OEM Information"
"NAME"="OEM Picture"
"LANGUAGE"="VBScript"
"TEXT 1"="Select Picture"
"DATA 1"="Pictures (*.bmp)|*.bmp"
"DESCRIPTION 1"="You can select any picture you want, but for best usage it should be 160x120 pixels, 16 colors."
"DESCRIPTION 2"="To see the picture, select "Start" | "Settings" | "Control Panel" and click "System"."
"DESCRIPTION 3"="Notice: Any existing OEM picture will be overwritten!"
"AUTHOR"="Xteq Systems"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
"COMMENT 2"="Version 1.1"
Sub Plugin_Initialize
' SetUIElement 1,GetWinDir
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
sSource=GetUIElement(1)
sDest=GetWinSysDir & "OEMLOGO.BMP"
If Len(sSource)>0 then
If FileExists(sDest) then
Call FileDelete(sDest)
end if
call FileCopy(sSource,sDest)
end if
End Sub
Sub Plugin_Terminate
End Sub